home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-03 | 1.1 KB | 43 lines | [TEXT/MPS ] |
- //----------------------------------------------------------------------------------------
- // MMovieViewer.cp
- // Copyright © 1996 by Apple Computer, Inc. All rights reserved.
- //----------------------------------------------------------------------------------------
-
- #if qDrag
- #ifndef __UDRAGDROP__
- #include "UDragDrop.h"
- #endif
- #endif
-
- #ifndef __UMovieViewer__
- #include "UMovieViewer.h"
- #endif
-
- #ifndef __UQUICKTIME__
- #include "UQuickTime.h"
- #endif
-
- //----------------------------------------------------------------------------------------
- // main:
- //----------------------------------------------------------------------------------------
- #pragma segment Main
-
- void main ()
- {
- InitUMacApp(8); // Initialize MacApp with 8 calls to MoreMasters
- #if qDrag
- if (HasDragManager())
- InitUDragManager();
- #endif
- InitUQuickTime();
-
- TMovieViewerApplication* aMovieViewerApplication = new TMovieViewerApplication;
- aMovieViewerApplication->IMovieViewerApplication();
- aMovieViewerApplication->Run();
- } // main
-
- //----------------------------------------------------------------------------------------
- // End of MMovieViewer.cp
-
- #pragma segment Inline
-